home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 10 code / LWFontUtility / UTILInstall / MakeFile < prev    next >
Encoding:
Makefile  |  1992-04-08  |  1.0 KB  |  36 lines  |  [TEXT/MPS ]

  1. #########################################################################################
  2. #
  3. # makefile - make rules for UTILInstall
  4. #
  5. # Written by Bryan K. Ressler (Beaker), 10/8/91
  6. #
  7. #########################################################################################
  8.  
  9. #COptions = -sym full -mbg full
  10. #LOptions = -sym full -t APPL -c UtIn
  11. COptions = -sym off -mbg full
  12. LOptions = -sym off -t APPL -c UtIn
  13.  
  14. std.precomp ƒ std.h
  15.     echo "    Building std.precomp from std.h..."
  16.     {C} {COptions} -d MAKEDUMP std.h
  17.  
  18. UTILInstall ƒ UTILInstall.c.o std.precomp UTILInstall.rsrc makefile
  19.     echo "    Building the UTILInstall..."
  20.     duplicate -y LWFU.bak LWFU
  21.     duplicate -y UTILInstall.rsrc UTILInstall
  22.     link {LOptions} ∂
  23.         UTILInstall.c.o ∂
  24.         -sn STDIO=Main ∂
  25.         -sn INTENV=Main ∂
  26.         -sn %A5Init=Main ∂
  27.         "{Libraries}"Interface.o ∂
  28.         "{Libraries}"Runtime.o ∂
  29.         -o UTILInstall
  30. #    beep 1c,5 1e,5 1g,5 2c,5 2c,5,0 1g,5 2c,10
  31.     beep 3c,2
  32.  
  33. UTILInstall.c.o ƒ UTILInstall.c UTILInstall.h std.precomp
  34.     echo "    Compiling UTILInstall.c..."
  35.     {C} {COptions} -o UTILInstall.c.o UTILInstall.c
  36.